home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility3 / jfklib.zip / HELLO.HPP < prev    next >
C/C++ Source or Header  |  1991-05-10  |  402b  |  27 lines

  1. /*
  2.     HELLO.HPP - Hello World - A Simple Demoprogram
  3.     (C) 1991 by Joachim Kainz 'On a mission from Bhudda'
  4. */
  5.     #if !defined (__HELLO_HPP)
  6.  
  7.     #define __HELLO_HPP 1
  8.  
  9.     #include <toplevel.hpp>
  10.     #include "hello.h"
  11.  
  12.     class HELLO : public TOPLEVEL
  13.     {
  14.       private:
  15.         PSTR    pTitle;
  16.         HFONT    hFont;
  17.  
  18.         METHOD WMClose ();
  19.         METHOD WMPaint ();
  20.  
  21.       public:
  22.         HELLO (int nCmdShow);
  23.  
  24.     };
  25.  
  26.     #endif
  27.